Viewing 15 posts - 646 through 660 (of 993 total)
For your first issue, SQL Server does have connections to itself - I imagine these would be those connections (especially if the SPID is < 50).
The applicationName that SQL profiler...
December 13, 2005 at 4:07 pm
Look at these MS KB articles.. It seems that you can indeed have several thousand values quite easily.... However, just make sure you upgrade to SP4 as it can cause...
December 13, 2005 at 4:33 am
I would suggest that you wouldn't set remote query timeout at the SQL Server end - try setting it for the oracle gateway instead... Not sure where to set it...
December 13, 2005 at 4:27 am
Please don't cross post - answer questions in this thread instead..
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=145&messageid=243743
Helps keep everything together ![]()
December 13, 2005 at 4:21 am
No probs. What you want to do is take another log backup of your database as it stands.
Then you should restore your full backup to a new database (just to...
December 13, 2005 at 4:20 am
Please don't cross-post, or if you must, at least include a link in your cross-posted question to your original question.. helps those searching to get all the answers in one...
December 13, 2005 at 4:18 am
I've never played with the proper "log shipping" feature of SQL Enterprise so I am not sure. But the idea of "log shipping" is to have the initial full backup...
December 10, 2005 at 12:47 am
and will probably beat it for some time to come ![]()
You can at least, in VM Ware (and probably in MS's virtual PC/server) set...
December 10, 2005 at 12:44 am
Are you sure the truncation is a bad thing? Have you tried restoring your full backup, followed by each of your transaction log backups and see if things are all...
December 9, 2005 at 7:44 am
Also, to my knowledge the client tools have not changed between SQL Server RTM and SQL Server SP4 - the service pack is for the sever, not the client tools... ...
December 9, 2005 at 7:40 am
Also look at the information_schema views - look in BOL index for "information schema views". These are the nice and supported way to retrieve metadata from SQL - although I'm...
December 9, 2005 at 7:37 am
I would suggest that you could do it using combinations of xp_cmdshell executing the dir command with the /s and /b switches, selecting the result into a temp table. Then...
December 9, 2005 at 7:35 am
Had a similar thing at one stage...
What about
select ciName, (select attributeValue from ciAttribute_t cia where cia.configurationItemID = ci.configurationItemID and attributeID = [ATTRIBUTE_ID_FOR_MODEL - OR DO JOIN TO ATTRIBUTES TABLE] )...
December 9, 2005 at 7:32 am
You can't refer to a column alias in the where clause. I also don't understand why you have a couple of selects in your second attempt? So modify your query...
December 9, 2005 at 7:24 am
Viewing 15 posts - 646 through 660 (of 993 total)