Viewing 15 posts - 616 through 630 (of 645 total)
what happens when setting up the connection in ftp connection manager and you click test connection?
June 1, 2011 at 8:20 am
yep or check sys.database_files for the name and compare to your mdf.
June 1, 2011 at 7:52 am
i had size issues with temp db too, it was down to the application using alot of temp. tables.
May 26, 2011 at 4:23 am
im sure that there is a Server Memory Change event class (tick all events when in profiler)
May 23, 2011 at 3:54 am
maybe use full text searching?
May 13, 2011 at 7:41 am
look on Microsoft's website they have a white paper comparing SQL Server to Mysql.
May 13, 2011 at 6:41 am
you made the suggested changes as indicated by SQLBuddy and still experience the issue??
May 13, 2011 at 3:48 am
When following design best practices i usually try a normalise my database solution.
so basically i try and follow:
table should have an identifier
table should store only data for a single type...
May 12, 2011 at 8:38 am
I think that the default behavior is that sql will perform a sample scan on the target table or indexed view. SQL Server automatically computes the required sample size, and...
May 12, 2011 at 7:43 am
If i am reading your question correctly i believe it will update the stats for all the indexes for the table in question
i.e. ( testcustomerdetails table)
use < DB>
GO
UPDATE STATISTICS test.testcustomerdetails;
GO
Sorry...
May 12, 2011 at 7:09 am
If it is a SID issue then use ALTER user or sp_change_users_login 'auto_fix'
May 12, 2011 at 6:54 am
yes dont forget to read up on Resource Governor!
May 12, 2011 at 6:12 am
Thats true, then the other way is to use the alter user command.
This can be used to repair orphaned users and works for both Windows and SQL Server logins
May 12, 2011 at 6:11 am
i would use backup and restore especially if you dont want much downtime then make sure orphaned logins are fixed.
May 12, 2011 at 3:21 am
Viewing 15 posts - 616 through 630 (of 645 total)