Viewing 15 posts - 4,606 through 4,620 (of 5,394 total)
The Dixie Flatline (2/7/2010)
February 8, 2010 at 2:08 am
Steve Jones - Editor (2/5/2010)
just an FYI. A great networking story for you folks out there: http://www.sqlservercentral.com/blogs/tim_mitchell/archive/2010/02/05/A-New-Season-_2D00_-A-Networking-Success-Story.aspx
A good example to follow. It's in my 2010 goals.
February 5, 2010 at 9:01 am
Alvin Ramard (2/5/2010)
Steve Jones - Editor (2/5/2010)
And you need to be sure you can get to 80mph in order to get that backup taken.
That's right. It only works on...
February 5, 2010 at 8:50 am
The WITH INDEX hint forces the optimizer to use the index you specified. This hint shouldn't be used, unless you already found out that the optimizer, for some reason, fails...
February 5, 2010 at 6:01 am
BTW, it looks like you are working with SQL Server 2005/2008: be sure to pick the right forum.
February 5, 2010 at 5:56 am
Why posting here? It's a very old thread, I suggest that you start a new one.
February 5, 2010 at 5:55 am
Check the recovery model for the database. Is it simple or full?
Set it to simple, then shrink the log files.
February 5, 2010 at 1:58 am
I see. You're trying to do something impossible.
Try this instead: create two temp tables (eg. #table1 and #table2), insert into each table the results from the two procedures and join...
February 4, 2010 at 4:15 am
The message you are getting means that Table1 has a different number of columns from the output of Query1.
If you just want to insert some columns, declare it explicitly:
INSERT #Table1...
February 4, 2010 at 4:04 am
Given that Query1 and Query2 give the same output columns, you coud do something like:
INSERT #table1 EXEC Query1
INSERT #table1 EXEC Query2
February 4, 2010 at 3:50 am
GilaMonster (2/4/2010)
Is there a question here?
Now there's one!:-D
February 4, 2010 at 3:48 am
What about sqlcmd?
You could provide the script name through the -i argument.
If you are working with SQL Server 2000/7 there's OSQL that works quite the same way.
February 4, 2010 at 3:43 am
The Dixie Flatline (2/3/2010)
Thanks, Jason.The reports of my death were greatly exaggerrated.
This remembers me when I attended High school and Slash (Guns and Roses guitarist) died something like once a...
February 4, 2010 at 1:23 am
Very strange thing, Lowell, this post is considered harmful by google Chrome. It says http://www.stormrage.com contains malware...
February 2, 2010 at 11:29 am
GilaMonster (2/2/2010)
http://www.sqlservercentral.com/Forums/Topic856902-145-1.aspx#bm857286
http://www.sqlservercentral.com/Forums/Topic475163-146-1.aspx#bm856344
http://www.sqlservercentral.com/Forums/Topic855771-360-1.aspx#bm855992
Am I getting too...
February 2, 2010 at 11:25 am
Viewing 15 posts - 4,606 through 4,620 (of 5,394 total)