Viewing 15 posts - 136 through 150 (of 530 total)
Running .NET IDE is quite memory intensive. We are running it on our 'old' 256MB laptops and it runs fine, but not really fast.
If you have the chance to upgrade...
August 27, 2003 at 3:02 am
sp_help <table name>
Returns more information like indexes, foreign keys, ... in a nice format in QA.
August 26, 2003 at 9:20 am
Declare your cursor as follows
USE PUBS
DECLARE @lName varchar(40)
DECLARE crsMyCursor CURSOR FOR
SELECT au_lname FROM AUTHORS
OPEN crsMyCursor
FETCH NEXT FROM crsMyCursor INTO @lName
UPDATE Authors SET au_lname...
August 26, 2003 at 9:07 am
Did you check permissions of the user running the Maintenance Plan job? This is by default the user that created the maintenance plan, and maybe that user does not have...
August 26, 2003 at 8:14 am
There is no easy way to do this in a single operation. What possibilities exist?
1. Use a trigger on the table. If you have cascaded triggers, you are sure to...
August 26, 2003 at 7:58 am
Agree with Andy. It is better to rely on a hardcoded parameterNAME than on an ordinal.
After all, you would not write an order by clause using ordinals, would you?
After...
August 26, 2003 at 6:27 am
There is an MDX expression 'Level' as in <Member>.Level.
This gives you the level of the member of the Dimension.
August 25, 2003 at 1:52 pm
My point wasn't as much which query the app passes in, but the method it uses to pass it in. Does it call a stored procedure using the ADOCommand object...
August 25, 2003 at 1:46 pm
Can you post a sample of what the App sends to the database? That might clear things up for us...
August 25, 2003 at 10:13 am
Can you give the format of the file? Maybe upload a small sample, and I will try to do some testing...
August 22, 2003 at 7:43 pm
Oops. Apparently there is no easy way to read a binary file using VBScripting. Maybe using JScript it gets easier?
An alternative solution could be to write your own object to...
August 22, 2003 at 10:40 am
Can you please explain more clearly what you want to achieve?
Do you want to have a syntax checking done before inserting the SQL String?
Give some examples. My solution I posted...
August 22, 2003 at 10:30 am
Obviously, that example won't work. What I was describing is a way to do this using any front end.
To escape a single quote, you should put two single quotes.
Your example...
August 22, 2003 at 8:44 am
Should be possible.
You should be able to create the logic for reading the binary file from an ActiveX task.
Insert the record ids (primary keys) inside a staging table and 'synchronise'...
August 22, 2003 at 8:06 am
It is quite logical that it does not work. How should SQLServer know which row you want to display for each unique hometel?
You could try the following...
August 22, 2003 at 7:55 am
Viewing 15 posts - 136 through 150 (of 530 total)