Viewing 15 posts - 316 through 330 (of 653 total)
the pesky where clauses, bulls eye Mark.
June 29, 2007 at 7:39 am
i did think of registering the dll but the reason why i had said try using the dts pack was so that if there was anything else that was broken...
June 29, 2007 at 6:20 am
i think Vladan is spot on with the best solution. after all sql is optimised for set based operations
June 29, 2007 at 6:17 am
1. create linked servers on a chosen instance which will serve as the main reporting point. and then either 2 or 3 below
2. you can then use dynamic scripts to get...
June 29, 2007 at 6:00 am
I second Andy's question, it might help if you give us a bit more info on your requirements.
June 29, 2007 at 4:37 am
try to cache the page results and use the front end web app to do the sorting instead of repeated access to the db
June 29, 2007 at 4:32 am
i think you are missing a NEXT keyword in you FETCH statement
FETCH
NEXT Customer into @CustomerID, @Expiry
June 29, 2007 at 3:10 am
you could replace the IF statement with
SELECT pKey, Column1 INTO #Tmp1 FROM Items
WHERE (<condition1> AND <condition2> ) OR
(<condition1> AND <condition3> )
June 29, 2007 at 2:49 am
Carlos' method is probably the quickest but you could create a CREAT TABLE script
In SSMS right click on the table > Script Table as.. > Create To..
You can then...
June 28, 2007 at 4:39 pm
please stop cross posting, you are wasting our precious clicks
June 28, 2007 at 4:21 pm
what is the pattern of the characters i.e.
12GGG23 or
GGG151516H or
11111JJJJJ or ...
June 28, 2007 at 4:17 pm
you could develop a .net assembly that reads the excel file, link it to a table valued function which you would use in you script. i am thinking you can...
June 28, 2007 at 4:14 pm
are you saying you managed to successfully use SQL Authentication?
Is the SQL user that is logged have access to the sql server?
June 28, 2007 at 4:04 pm
you can assign the string to another variable which you then add it to your final variable
set @details = SELECT 'FileNumber = '+...
June 28, 2007 at 2:19 pm
for the sake of arguing with you John, Magy did not explicitly specify that she was looking getting opinions on writing style, hence there are more than one solutions to...
June 28, 2007 at 1:21 pm
Viewing 15 posts - 316 through 330 (of 653 total)