Viewing 15 posts - 826 through 840 (of 1,186 total)
Unfortunately, there is no easy way of getting SQL to FORMAT like EXCEL. What you probably could do is take your code above and build it into a function that...
September 10, 2004 at 9:20 am
This is from my PC
name minimum maximum config_value run_value
----------------------------------- ----------- ----------- ------------ -----------
max text repl size (B) 0 2147483647 65536 65536
This is from my Dev server
name minimum maximum ...
September 9, 2004 at 5:47 am
I would avoid trying to use the "SET identity ON add a record SET identity OFF"
This will cause duplicate records to get entered/records inserted out of order.
I know from personal...
September 9, 2004 at 5:40 am
that my friend could get very ugly. You would need to build multiple variables and parse the text field ..... Please dont ask me how to do that. I have...
September 8, 2004 at 5:23 pm
Sounds like you will have to build a temp table that will be populated by the 1st row with whatever criteria is used to pull the data for the 1st...
September 8, 2004 at 5:54 am
Have you tried converting the ReadText to be like the following?
CAST(ReadText AS VARCHAR(8000)) or CONVERT(VARCHAR(8000), ReadText)
You can also add that to the WHERE or wherever else you reference the TEXT...
September 8, 2004 at 5:48 am
To my knowledge you can't (or rather shouldn't). You can easily do this through EM and for the more adventurous via registry hacking (not recommended for ANYONE but an option...
September 7, 2004 at 5:42 am
AH! Now it becomes clear. I downloaded the SQL Server 2005 BETA I think you have the client reference edition only.
Sorry to confuse you,
September 4, 2004 at 10:46 am
I downloaded from MSDN.one.microsoft.com but you have to be a subscriber. I don't know where else to get it
Are you sure you dont have
"C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\SqlWb.exe"
???
September 3, 2004 at 2:47 pm
I create a variable called PilotRun in the DTS package properties and set it via command line run (we use a host scheduler and have to use DTSRun). Here is...
September 3, 2004 at 10:44 am
I tried to find something in BOL aqnd couldn't. I always use a variable because I never thought out a function....
September 3, 2004 at 10:39 am
It is the SQL Server Management Suite (Profiler, EM, QA) and Business Intelligence (??) for DTS Packages
September 3, 2004 at 5:23 am
Not very complicated but hopefully will help you:
SELECT *
FROM pubs.dbo.authors AU
LEFT JOIN pubs.dbo.titleauthor TA
ON AU.au_id = CASE WHEN ISNULL(TA.au_id, '') = '' THEN NULL ELSE...
September 3, 2004 at 5:21 am
Viewing 15 posts - 826 through 840 (of 1,186 total)