Viewing 15 posts - 3,556 through 3,570 (of 7,429 total)
This error normally happens if you have striped the backup over several backup devices, and then try to restore from only one or not all of them.
January 17, 2003 at 6:59 am
quote:
Approach every issue with the idea that every resource is solid gold, and in a year or so, you'll still have your...
January 17, 2003 at 4:53 am
Number of rows and data size is not limited for table. Only width of rows which is delved into a bit here.
http://www.sqlservercentral.com/columnists/sjones/pagesize.asp
A table go go well into terrabytes. However, if...
January 17, 2003 at 4:45 am
Now a scheduled chat session might actually be fun. May set a topic for the discussion early on and see who is interested. I would just say have a test...
January 16, 2003 at 7:01 pm
I right off see several table scans. Now the fact that the size of the query doesn't match the output means this is a view right? Can you post the...
January 16, 2003 at 6:59 pm
There are many factors that can effect performance and speed of a query besides memory.
Look at the query execution plan and see if anything that is bad for performance is...
January 16, 2003 at 4:55 pm
I believe it means SELECT..INTO..FROM
like so.
SELECT tbl1.Col1,
tbl1.Col2,
tbl1.Col3,
tbl2.Col1,
IDENTITY(int, 1, 1) As SortOrder
INTO DestinationTable
FROM tbl1
CROSS JOIN tbl2
WHERE tbl1.tbl1id = 1
Hey Scorpion, I couldn't help but laugh too. I wonder if anyone else...
January 16, 2003 at 4:51 pm
I cannot remember and I do not have a way to test here nor can I find the article off hand. But I believe you have to have MSDTC running...
January 16, 2003 at 3:52 pm
Just change where David made it varchar back to
declare @tmpuid uniqueidentifier
should do the trick.
January 16, 2003 at 3:42 pm
This is one of those gotchas many people miss.
In QA pres CTRL+SHIFT+O or select Tools/Options on the menu bar.
Now on the new dialog select the "Connections Properties" tab. When you...
January 16, 2003 at 3:38 pm
I don't think it will take even that long. But as always backup your DBs beforehand for safety in case the unforseen occurrs.
January 16, 2003 at 3:16 pm
See this
http://www.sqlservercentral.com/columnists/glarsen/collate_part1.asp
and this (which has options on this)
http://www.sqlservercentral.com/columnists/glarsen/collate_part2_1.asp
January 16, 2003 at 3:10 pm
See if this helps
from BOL
quote:
How To Disable Publishing and Distribution (Transact-SQL)To disable a Distributor (Transact-SQL)
Execute sp_dropdistpublisher to drop a Publisher...
January 16, 2003 at 3:06 pm
What specifically are you trying to accomplish? Can you describe why each needs it's own local SQL? Laptop or desktop?
January 16, 2003 at 3:01 pm
Some I know of right off the top that are pluses (at least to some).
1) New table variable data type. Usefull for small temp tables, avoiding some tempdb stuff and...
January 16, 2003 at 2:59 pm
Viewing 15 posts - 3,556 through 3,570 (of 7,429 total)