Viewing 15 posts - 61 through 75 (of 123 total)
Hi Tim,
Did you check the network. A while ago we had performance problems that where caused by a corrupt network card on the server.
Klaas-Jan
October 7, 2002 at 5:43 am
Hi , the sql-dmo samples are installed (i used the default installation location)
in:
C:\Program Files\Microsoft SQL Server\80\Tools\DevTools\Samples\sqldmo
best regards,
Klaas-Jan
October 2, 2002 at 8:23 am
Hi,
I found this in the sql-dmo samples
first create the table
then add the primary key constraint like this
Private Sub CreateMyTable()
On Error GoTo ErrorHandler
'This example illustrates...
October 2, 2002 at 5:02 am
you can use the osql commandline utility to write the output to a file.
October 2, 2002 at 4:32 am
Hi tom,
i just did some tests. With bulk insert and a format file the columns are correctly filled. You only have to trim spaces.
create table...
October 1, 2002 at 8:05 am
Hi, Prakash
You could add sybase as a linked server to sql, but that will be slow. Then you could the linked server syntax (openquerie or ...)
You could try to connect...
September 11, 2002 at 2:59 am
Hi Chris,
I have a simular problem, the only thing i could find is Q302621, i don't know when this bug is solved. maybe somebody has found an other workarround
...
September 9, 2002 at 12:37 am
Hi, can you post your complete code of the stored procedure, maybe there is a way to avoid using a cursor.
Klaas-Jan
August 7, 2002 at 12:44 am
Hi, put the begin transaction in the try block.
regards,
Klaas-Jan
July 24, 2002 at 3:00 am
Hi,
1) you are correct if you add fields in a table you have to drop and recreate the linked table. You can do this in code with refreshlink.
When you add...
July 18, 2002 at 7:14 am
hi, try this
select sum([value]) from tbltest
where left([id],2)=11
group by left([id],2)
union all
select sum([value]) from tbltest
where [id] between 2015 and 2025
group by left([id],2)
July 17, 2002 at 8:50 am
Hi, there is also a column loginname which captures sql login or a windows login in the form domain\username
regards,
Klaas-Jan
July 17, 2002 at 6:30 am
Hi,
In a number (or decimal or float) field you could not fill in a quote.
In your code yould where you build your sql string you could something like this:
strsql="insert into...
July 17, 2002 at 3:54 am
hi Chris,
How much impact has the encryption of the databasefiles on performance?
Klaas-Jan
July 17, 2002 at 3:39 am
Viewing 15 posts - 61 through 75 (of 123 total)