Viewing 15 posts - 16 through 30 (of 35 total)
A couple of questions:
- where is the database located? on the sql2000 server? if so, is the sql2005 allowed to connect to the sql2000 server?
- does the 'sa' principal exist...
August 19, 2008 at 8:59 am
Nice one. To be honest: what I expected wasn't the right answer 😉 But after testing it I knew what was 🙂
Thanks for the lesson in wildcard characters!
August 13, 2008 at 4:26 am
Have you tried encapsulating your IF statements between "BEGIN...END"?
For example:
SELECT * FROM employee
BEGIN
IF @employee = 'Some value' THEN 'some condition'
END
BEGIN
IF @employee = 'some other value' THEN 'some other condition'
END
August 8, 2008 at 7:07 am
Yes, this can be done. Try using order by [column_name] asc.
August 7, 2008 at 3:48 am
You are referring to a table D (D.Debit) but you don't declare this table. Perhaps you mean I.Debit?
August 5, 2008 at 9:45 am
Hi there,
Thanks for this script...I was looking for a script like this. I tried both the SQL2005 and the SQL2000 script. No problem with the first script but the second...
July 29, 2008 at 9:37 am
Are you sure the sixth field is filled in for every row in your original file?
July 28, 2008 at 6:26 am
If you want 'server A' to be replaced by 'server B' the very instant 'server A' crashes you should consider using replication.
If replication is out of the question you should...
July 17, 2008 at 7:03 am
Jan Van der Eecken (7/16/2008)
Except when a database is being recovered,...
July 16, 2008 at 8:47 am
Hi!
Have you clicked on the link I provided about computed columns?
When using computed columns you don't need to use a query to accumulate the columns. The accumulation is done by...
July 14, 2008 at 4:48 am
If you create a backup of your database you're sure you can attach it to another server.
July 14, 2008 at 4:00 am
So you want a per row accumulation of Col1 and Col2 and put the answer in Total? (I'm having a bit of a problem with some smilies in your tables...
July 14, 2008 at 3:38 am
Hi,
You can:
1) rightclick on a database
2) click tasks
3) click import or click export
Then it's possible to import / export the full database or you can just select the table(s) you'd...
July 7, 2008 at 8:54 am
Well then you can use your tab delimited file to import the data by using BCP.
July 4, 2008 at 7:29 am
Viewing 15 posts - 16 through 30 (of 35 total)