Viewing 15 posts - 44,746 through 44,760 (of 49,571 total)
Too expensive.
I can understand why. Instructors don't come cheap and it it's 5 different instructors over a couple weeks, that is going to cost. Problem is, it's priced curently in...
September 2, 2008 at 4:10 am
You don't backup tables in SQL, you backup databases.
You can export the table as csv, or make a copy of it in another database
September 2, 2008 at 2:55 am
Can you please give us the table structure, some sample data and an example of what you want out?
Without that we're going to be guessing as to whether or not...
September 2, 2008 at 2:40 am
There isn't an undelete function. There's no history unless you have an audit-trail or similar. There's no built-in source control of any form in SQL.
Are you sure there's no backup...
September 2, 2008 at 2:19 am
If you can post the code, I'm sure someone will be able to help you remove the cursor.
September 2, 2008 at 2:07 am
Generally, yes, but you should test your queries to make sure they use the indexes you've created.
September 2, 2008 at 2:04 am
Use the fn_trace_getdata function to load the trace data into a SQL table. Then you can query the trace data to get your information.
The only metrics you can compare your...
September 2, 2008 at 2:03 am
If you're asking for all the values in the table to be read (as you are) the only way that SQL can possible do that is to scan the index....
September 2, 2008 at 2:00 am
Default database.
What you need to get out of the syslogins is the login name, the password (hashed) and the SID. The SID is what will link up the logins with...
September 2, 2008 at 1:43 am
Don't enable AWE with only 4 GB memory. Enable the /3GB switch in boot.ini.
As for the cumulative updates, run SELECT @@Version and compare the version number to the very comprehensive...
September 2, 2008 at 12:35 am
Jeff Moden (9/1/2008)
GilaMonster (9/1/2008)
September 2, 2008 at 12:19 am
It only works if you're connected to a SQL 2008 server. If you're connected to any lower version, intellisense is disabled
September 2, 2008 at 12:10 am
Try restoring the backup to another server as a normal user database, then scripting the logins from the syslogins table.
Please, in the future, put SQL 2000-related questions into the SQL...
September 1, 2008 at 11:58 pm
Dougo (9/1/2008)
Where would I find the logical scan fragmentation percentage?
It's called that in DBCC showcontig. If you're using sys.dm_db_index_physical_stats (which I assume you are) then the avg_fragmentation_in_percent is the logical...
September 1, 2008 at 11:56 pm
rbarryyoung (9/1/2008)
September 1, 2008 at 11:43 pm
Viewing 15 posts - 44,746 through 44,760 (of 49,571 total)