Viewing 15 posts - 9,166 through 9,180 (of 9,641 total)
Red Gate probably has a tool that will do that. I know SQL Data Compare will generate the data script when doing a comparison. I don't think it...
February 29, 2008 at 2:57 pm
Because you are naming the file with an "XLS" extension, Excel thinks it is a native file and is not looking for a delimiter.
I would use "," for...
February 29, 2008 at 2:52 pm
Lynn Pettis (2/29/2008)
Okay, sorta helps, but still I'm not quite there. Does that shoot me down from working with you or do I at least understand enough that they...
February 29, 2008 at 2:32 pm
The thing about functions in where clauses is that, if on a column, you have to run every row through the function while using them on a parameter or constant...
February 29, 2008 at 12:15 pm
You cannot index a text datatype. The TEXT datatype is stored as binary data and was intended mainly to store documents, etc.. and is being deprecated. It also...
February 29, 2008 at 12:12 pm
If this is how you will most often be querying your data you should have month and year columns in table with an index. Or, write your queries with explicit...
February 29, 2008 at 11:46 am
Grant Fritchey (2/29/2008)
BTW, we are hiring over here in the Island of...
February 29, 2008 at 9:51 am
GilaMonster (2/28/2008)
Indexes - types, differences.
Statistics - what, why
Database corruption - how...
February 29, 2008 at 9:35 am
Jeff Moden (2/29/2008)
Mark Markov (2/29/2008)
NO, I am not being honest about my lack of knowledge of SQL Server! Think about it!! If my resume is junior level,...
February 29, 2008 at 9:20 am
I would venture to say that just because you are creating the steps in that order, SQL Server is not sequencing that way. You can provide the parameter @step_id...
February 29, 2008 at 9:02 am
salinasalina2001 (2/29/2008)
i am tryin to match parameterid of the first table to second table
if the datas are int i convert it to int...
February 29, 2008 at 8:31 am
In the DDL trigger you have access to the EVENT_DATA function which returns an XML document that includes a the node (/EVENT_INSTANCE/TSQLCommand/CommandText that has the T-SQL run. You would...
February 29, 2008 at 6:15 am
I do not use any encrytpion on my personal laptop. Several people I know do. I have never used encryption in SQL Server because I have worked on...
February 29, 2008 at 6:08 am
Here's how I would do it:
Step 1 - determine if the tables with the same names be merged into a single table in a new db or do is the...
February 28, 2008 at 9:53 pm
Your problem probably has to do with the blue/italic code below. Because of the blue/bold code (setting the _val variables to null) means the red/italic code never runs.
set @f_val...
February 28, 2008 at 9:43 pm
Viewing 15 posts - 9,166 through 9,180 (of 9,641 total)