Viewing 15 posts - 1,066 through 1,080 (of 1,271 total)
Using LIKE in this manner is going to require putting ever possible character other than 0-9 in the pattern. Fortunately, there's an easier way. Specify a range of 0-9 and...
November 6, 2006 at 9:13 am
Then you didn't do an in place upgrade. If you are upgrading the default instance, tell the setup program to make the install the default instance, and it will upgrade...
November 3, 2006 at 12:38 pm
Just to make sure that I understand correctly, the distribution database is on the same server as the subscriber, not the publisher?
Are you planning to do an upgrade in place...
November 3, 2006 at 12:06 pm
A couple of ideas for that:
1. Insert the results into a table variable and then select where the level = the max level in the table.
2. Make the whole query...
November 3, 2006 at 9:21 am
What do the contents of the log file say for the last execute by the bat file?
November 3, 2006 at 9:17 am
How are you executing the bat file? Do you see the command window and are you interacting with it as it runs? I ask because there is another pause command...
November 3, 2006 at 3:13 am
No, but there are cases where it wouldn't work without a semi-colon. For example, I have a stored procedure that performs a maintenance task with many steps. The procedure basically calls...
November 3, 2006 at 3:09 am
Hmmm, sounds kind of like you deleted something iportant when you deleted the other instance.
November 3, 2006 at 3:01 am
DTS doesn't have a looping mechanism, not directly. So, how are you doing the loop? Please explain how you doing that, and I will be able to help you a...
November 2, 2006 at 10:30 pm
You do realize that your last command in the bat file is PAUSE, don't you? The last thing in the file is saying to wait, so it is waiting. Take...
November 2, 2006 at 10:24 pm
Nope, not a bug. It's also not SQL Server's fault. It is the behavior, by design, of the ISAM used to connect to Excel and standard delimited text files. In...
November 2, 2006 at 10:20 pm
I would put a bat file on the server, schedule the bat file via Windows Scheduled Tasks to check for existence of new files. If new files are detected, fire...
November 2, 2006 at 10:04 pm
The problem is that the other version has a different name. So you have to use the -S flag to tell it the name of the instance it should connect...
November 2, 2006 at 1:45 pm
Is your default instance up and running? What is the exact error output that sqlcmd gives you?
November 2, 2006 at 12:36 pm
In the last section, you didn't alias ParentInfo as P like you did in the earlier section.
INNER JOIN ParentInfo <insert alias here>
November 2, 2006 at 12:30 pm
Viewing 15 posts - 1,066 through 1,080 (of 1,271 total)