Viewing 15 posts - 2,821 through 2,835 (of 2,839 total)
Did you check if the SP is doing a recompile everytime it is running? Did you by any chance try to force it to recompile after updating the statistics? Maybe...
December 21, 2007 at 10:56 am
Cant you use Dynamic SQL? Create the string with your Select statement based upon the criterea and the execute it?
Please check for SQL Injection if you plan to use dynamic...
December 21, 2007 at 10:47 am
This is probably because there are still active connections to the DB that you are replacing with the new Back up. Check if there are Jobs running. You could stop...
December 21, 2007 at 9:22 am
When you do the select in the Sp, you just have to give a ISNULL. That should work
Select isNULL(dateColumn,getdate()) , col2 from table1
where ....
December 21, 2007 at 8:28 am
You can add this option while creating the Login. CHECK_EXPIRATION ={ ON }
Keep in mind that it is applicable only to SQL Logins and on Windows Server 2003 and...
December 21, 2007 at 7:44 am
There would never be any problem if you enumerate columns when ever you do an Insert or a Select.
We did a good thing at our company. We made it as...
December 21, 2007 at 7:29 am
If you have third party applications running, you should never try to change the compatibilty level to 90 without proper testing. You could run the upgrade advisor to find out...
December 21, 2007 at 7:14 am
Lowry Kozlowski (12/20/2007)
December 21, 2007 at 7:06 am
You could write a function that converts the string of numbers and returns a TABLE that contains the integers as values.
I think that is the easiest way to do and...
December 20, 2007 at 2:17 pm
You should not have too many sysadmin accounts in your DB. Either keep the SA or remove it and add another one. Never let any admin privileged account access data...
December 20, 2007 at 10:18 am
Strange, Once you delete it , is the database still working?
Did you check the file path of the DB to make sure that the file you are able to...
December 20, 2007 at 9:58 am
You can just create a user and the role of SysAdmin.
Members of the sysadmin fixed server role can perform any activity in the server. By default, all members of the...
December 20, 2007 at 9:56 am
Why not set up the New SQL 2005 server as a warm stand by. Before the final plug is pulled, close all external connection to the 2000 DB. once the...
December 20, 2007 at 8:18 am
Hi Hasib,
you could always set up a server side trace as a job and copy the Job to different Servers with slight modification. Then have some reporting feature to get...
December 20, 2007 at 8:02 am
This could be because the Statistic on the table is not Updated. Maybe you should just Update the statisitics of the table before trying to do the update.
December 20, 2007 at 7:54 am
Viewing 15 posts - 2,821 through 2,835 (of 2,839 total)