You can drop the view and create it again but you may not need to If you “updated one of the files that the view is based on” by adding or deleting a field that is not used by the view no change should be necessary. The view contains the set of rules for gathering [...]
I have not done this upgrade, but I would not expect to see performance drop. Some things to check and do if missing <ul> Have you set Maximum Memory for SQL Server Have you changed database compatibility level to 10 Have you re-created statistics for all your upgraded databases Do you have enough memory on [...]
I suggest you reading <a href=”http://msdn.microsoft.com/en-us/library/ms190217.aspx”>this MS Article</a> about the topic.
Hi have a look at this <a href=”http://www.simple-talk.com/sql/sql-server-2005/dts-to-ssis-migration/”>really good article</a> that talks about the topic.
SELECT * FROM subscrib;
After you rename the server normally, connect to the SQL Server and run the following. <pre>exec sp_dropserver ‘OldServerName’ go exec sp_addserver ‘NewServerName’, ‘LOCAL’ go</pre> Then restart the SQL Server Service.
You can use the <a href=”http://msdn.microsoft.com/it-it/library/ms174420.aspx”>DATEPART </a>to get just given parts of the DT filed.
I think you would have more chances to get useful responses if you synthesize the question a little. So, I would re-word the question being as specific and concise as possible, would post an example of the desired output (if applicable), would try to clearly specify what my problem is, and if I was getting [...]
This could be one way to do it: <pre>SELECT id, min(description) FROM YourTable GROUP BY id;</pre>
If you are asking how to diagram an existing database, from within SQL Server Management Studio open the database, and select Diagrams. Add your tables, and it will create the diagram for you. You can also use Visio to reverse engineer your database. If what you are asking is how to create the database in [...]
How do i start. I also work fo a comapny where we have lists come in every day that we need to de-dupe from what in our SQL Server database. We get lists from Alliance as well a lot of other vndors so i know your pain. As far as software tools we use MatchIT [...]
This T/SQL script will script out all the rights to all the regular database objects in your database. <pre>select sys.schemas.name ‘Schema’, sys.objects.name Object, sys.database_principals.name username, sys.database_permissions.type permissions_type, sys.database_permissions.permission_name, sys.database_permissions.state permission_state, sys.database_permissions.state_desc, state_desc + ‘ ‘ + permission_name + ‘ on ['+ sys.schemas.name + '].[' + sys.objects.name + '] to [' + sys.database_principals.name + ']‘ COLLATE [...]
There are many factors that could affect performance. Without more information, it will be really hard to answer. Can you post your code ? ——— The first thing that you need to do is identify what statement within your stored procedure is causing you the most problems. You can do this by looking at the [...]
Yes, if you have a linked server from the database server that you are connecting to, to the other database server and the login which you use to access the remote server via the linked server has access then you can access the remote database. However using a variable for the database or server name [...]
Have you tried uninstalling and reinstalling the SQL Writer as per the error message?
Hi This question is very OS specific. Please refer to a Fedora Working Group or Blog. Cheers, Silvia Hi, If all you are looking to do is assign an IPV6 address to an interface, use the command: [root@serverA ~]# ip -6 addr add {ADDRESS} dev {DEVICE} to delete the address substitute ‘del’ in place iof [...]
SQL refers to the base Structured Query Language which is an ANSI Standard. T-SQL, also known as Transact-SQL, is a “superset” of SQL which is used by Microsoft SQL Server and Sybase SQL Server. T-SQL supports all the commands that SQL supports, but SQL doesn’t support all the commands that T-SQL supports. For more info: [...]
Using SQL 2000 you’ll need to create a temp table (a table with a # as the first character in the table name) then put the selected rows into the temp table. Update the values in the temp table as needed, then write those values to the destination table then delete them from the source [...]
Instead of trying to create the folder on the mapped drive, create the file on the OS400 folder using the full network path to the folder. You will need to make sure that the SQL Server is running under a domain account and that, that account has rights to the network share on the OS400 [...]
Try either the process explorer (procexp.exe) or process monitor (procmon.exe) utilities from Sysinternals/Microsoft. These can be found at http://live.sysinternals.com. You can also do a search for them on the Microsoft website if you need additional documentation.





