Viewing 15 posts - 1,021 through 1,035 (of 1,655 total)
November 29, 2007 at 11:49 am
Try this:
Exec sp_MSForeachDB @command1 = 'Use ?;SELECT DB_NAME(),FileName,
CASE
WHEN Growth = 0 THEN ''NO''
ELSE ''YES''
END as AutoGrow
FROM sysfiles'
November 29, 2007 at 8:30 am
Brandie Tarvin (11/29/2007)
Do I need to install AS on my desktop to get the client tool that I can use to hook up to the server?
Hmm, I must admit...
November 29, 2007 at 6:16 am
Brandi,
I would check if the MSSQLServerOLAPService is installed on the machine. You could also check if a folder ...\Microsoft Analysis Service exists but the service is a better option.
When it...
November 29, 2007 at 4:43 am
Just google on "sql duplicate records rows" and you will probably find hundreds of these scripts.
November 29, 2007 at 3:54 am
I'm sure that if you search in the scripts section of this site you will find at least 4 or 5 scripts dealing with spaceused etc..
Here's one which deals more...
November 29, 2007 at 3:45 am
Swati,
the only explanation I can think of is a collation issue. Maybe the database (or table or column) collation you use in SQL server is different from the Orace collation.
November 28, 2007 at 12:20 pm
You wrote that you have AWE enabled but only use 600 MB of RAM. AWE memory is over 4GB so you better disable that again.
Now to the timeout problem, I've...
November 28, 2007 at 4:54 am
First of all why would you want a primary key with a length or 32. Seems extremely unefficient to me.
Second could you post ure DDL. Now I can only gues...
November 28, 2007 at 2:13 am
If your database still has the status loading, you probably didn't select the recovery option when restoring the backup. Start antother restore and make sure you've select RECOVERY option.
The message...
November 28, 2007 at 2:07 am
Don't double post. See the answer here:
http://www.sqlservercentral.com/Forums/Topic426742-146-1.aspx#bm426745
November 28, 2007 at 2:02 am
With sp_trace_create you an create your own trace. The easiest way is prpobably to define a trace in profiler and then script the trace definition.
About writing the results to a...
November 28, 2007 at 1:58 am
I agree with Kenneth that your procedure looks for systransschema in the local datbase.
I ran into similar issues then writing such a procedure, but instead of prefixing all the...
November 28, 2007 at 1:25 am
Thayal Muhunthan (11/27/2007)
Could please let...
November 27, 2007 at 8:44 am
Viewing 15 posts - 1,021 through 1,035 (of 1,655 total)