Viewing 15 posts - 14,296 through 14,310 (of 14,953 total)
pommguest99 (4/7/2008)
Tables - Filefit, myTemptable(which happens to be a join...
April 7, 2008 at 2:38 pm
That means that there is at least one row in the spreadsheet where ID_PK is blank. If you can't see on like that, likely it's at the bottom of...
April 7, 2008 at 2:31 pm
Try making the appostrophe a double-apostrophe.
Also, test the thing for SQL injection, just for your own sanity/safety.
Try using "1=1; select * from sys.all_objects --" as the string you send it....
April 7, 2008 at 2:29 pm
Take a look at sys.foreign_keys. It's a system view, and it probably has what you're looking for.
April 7, 2008 at 2:25 pm
Not sure what you mean by comparing two tables for similarities and differences. Do you mean compare the data in two tables, or the column names, or something else?
April 7, 2008 at 2:23 pm
Depending on how you use them, temp tables can cause performance problems.
For example, if you create a temp table in a proc after you have already run DML commands in...
April 7, 2008 at 2:21 pm
It looks like there's an extra single-quote at:
''+@id
I copy-and-pasted your code into Management Studio, removed that single-quote and it didn't give a syntax error when I ran it.
April 7, 2008 at 2:12 pm
Are you in a position where you can add a "timestamp" column to the table you want to track changes on? (Look up Timestamp in Books Online. It...
April 7, 2008 at 2:07 pm
roy.tollison (4/7/2008)
select * from table1
where ((col1+col2+col3) in (select (col1+col2+col3) from table2))
my col3 unfortunately contains the apostrophe. how can i get it to work correctly?
Are you saying that the column name...
April 7, 2008 at 2:03 pm
Open Books Online, copy and paste the address into the URL field. Should get you there.
April 7, 2008 at 1:43 pm
Is this something you'll need to do repeatedly, or is it a one-time situation?
If it's a one-time situation, using the Import Wizard from Management Studio should work.
If it's a repeatable...
April 7, 2008 at 1:41 pm
Without specifics on the table, I can't give you a complete solution, but I can recommend that you look into using a Numbers table instead of brute force.
(In case you...
April 7, 2008 at 1:37 pm
Ah. That should go in the body of the proc. After "as". Not as part of the input/output parameters.
April 7, 2008 at 12:34 pm
Yeah, Lynn's solution is better. One less table lookup per column-variable pair.
April 7, 2008 at 12:33 pm
If I'm understanding you correctly, you'll need to use dynamic SQL for that.
You build the query as a variable, then execute it with sp_executeSQL.
For example:
declare @sql varchar(max), @Col varchar(128), @Table...
April 7, 2008 at 12:31 pm
Viewing 15 posts - 14,296 through 14,310 (of 14,953 total)