Viewing 15 posts - 136 through 150 (of 177 total)
select * FROM sys.objects
where type ='U' and [name] like 'GV_%_A'
This will give you the table information that is...
February 6, 2009 at 7:11 am
If you take GSquared's approach, all the common data will be in one single database. There should be no issue in referential integrity.
February 5, 2009 at 3:40 pm
If you know what the job is doing, you may check the status (percent-complete, estimated complete time) in sys.dm_exec_requests if you could figure out the sessionid, requestid etc...
February 5, 2009 at 3:36 pm
Rather than install another Instance on the cluster, maybe you could ADD your new databases under the same existing instance.
February 4, 2009 at 2:11 pm
I think it depends on your major duties.
In my company, we have a Database administrator Manager whom I am reporting to. As the only SQL DBA here, my main...
February 4, 2009 at 9:22 am
On your passive node, Go to your START-->>RUN, type in 'sqlwb.exe' and see what will happen.
January 29, 2009 at 9:01 am
Also, I use management studio for all forms of management, If I reboot my computer, it means that I loose all the connections that I have made with all the...
January 29, 2009 at 8:43 am
Charles Hottle (1/29/2009)
January 29, 2009 at 8:25 am
Not sure what you want to compare exactly...
Found the following two on codeproject.com
Database compare: http://www.codeproject.com/KB/database/DBCOMPARE.aspx
Schema compare: http://www.codeproject.com/KB/database/SideBySideSQLComparer.aspx
January 28, 2009 at 12:26 pm
Go to Column Filter,
Choose TextData ,
in LIKE, put %YOURTABLENAME% in
AND CHECK the box ' Exclude the rows that do not contain values'
January 28, 2009 at 7:34 am
Not sure what you really want to achieve.
Does your filepath dynamically change according to the job steps?
or is it just a static filepath that is repeatedly used?
If it is...
January 27, 2009 at 2:15 pm
What error did you see when you tried to create a maintenance plan?
How did you try to create the plan?
January 27, 2009 at 2:09 pm
Maybe locking pages in memory could help you.
Look at these:
How to: Enable the Lock Pages in Memory Option (Windows)
also look at this... for what can be...
January 27, 2009 at 1:46 pm
Ask this on the SSIS forum.
http://www.sqlservercentral.com/Forums/Forum148-1.aspx
Bet you will get a better shot.
January 27, 2009 at 11:16 am
You can use variables in job steps.
But you can not refer to a variable that is in another step.
You have to declare them seperately. and the scope for the...
January 27, 2009 at 11:06 am
Viewing 15 posts - 136 through 150 (of 177 total)