Viewing 15 posts - 241 through 255 (of 322 total)
Wasn't there a thread (or two) recently on temp tables vs. table variables? I recall the gist was SQL Server implements them similarly, so you don't really get any...
July 6, 2005 at 9:58 am
Do you want the next date if it's a weekend day? Your original post said business date. If you add ten hours to the time of orders after...
May 13, 2005 at 11:28 am
Danger is my middle name. How about:
ALTER TABLE Table1 ADD CONSTRAINT FK_Table1_Table2 FOREIGN KEY
REFERENCES Table2 ( LastName )
ON DELETE CASCADE
April 22, 2005 at 3:56 pm
Thanks, guys, I'll have to file this one away for later use. Our DBA swears that we have mysteriously flipped on a global setting. Our "alpha" programmer has ordered that...
April 20, 2005 at 6:13 pm
It sounds like you are saying that because of the SCHEMABINDING, I need to have all these (required for views with indexes) set:
SET ANSI_NULLS ON
SET ANSI_PADDING ON
SET ANSI_WARNINGS ON
SET ARITHABORT...
April 20, 2005 at 11:47 am
Kenneth: Given that the other procs don't reference this view, what are the correct settings? I believe we have ARITHABORT ON and we tried QUOTED_IDENTIFIER ON and OFF. But it shouldn't...
April 20, 2005 at 9:33 am
You can use BULK INSERT in T-SQL to load the file into a temp table. There are plenty of good threads here on BULK INSERT.
April 13, 2005 at 5:09 pm
Remi: You're right, how would systems function if anyone could turn off logging? It would be like driving while talking on the cell phone; I know I can do it...
April 11, 2005 at 3:42 pm
"A data extract thingie"?? Is that how the statement of work was worded? That's how the State of California does theirs.
April 7, 2005 at 10:11 pm
mom: "I just hope technology would help them learn to be a smart, bright and loving children."?? Nope, that's your task. Oh, and mine, and Steve's, and Celko's (bless his heart). ...
April 7, 2005 at 12:14 pm
It looks like you have multiple select statements in your script. If so, you will always have those header rows. You might insert the count results into a table variable,...
April 6, 2005 at 11:58 am
DTS will work just fine. I base the design decision on whether to do that from DTS or from code in a stored proc on where it needs to be...
March 23, 2005 at 1:14 pm
Look in BOL, but also search this forum for "bcp" and "queryout". There are some really good threads here on this topic. If you get stuck, post again.
March 22, 2005 at 5:56 pm
And wouldn't that be a fun one to debug?
March 22, 2005 at 10:41 am
We script all changes from dev to QA. If someone adds a column, they generate an ALTER TABLE script. Stored proc changes are also scripted, with a DROP then CREATE...
March 17, 2005 at 4:04 pm
Viewing 15 posts - 241 through 255 (of 322 total)