Viewing 15 posts - 3,211 through 3,225 (of 3,615 total)
You set @insertSql statement is trying to concatenate a string and a date, and therefore throws the error.
If you want to build the string then simply do the following
set @insertSql='Insert...
May 20, 2004 at 1:13 am
Surely, this is what the MODEL database is for?
May 20, 2004 at 1:04 am
I think the great thing about MIDI was that it was a standard when there weren't any standards.
To come up with a replacement for MIDI would be a major achievement, after...
May 19, 2004 at 9:45 am
There is an IGNORE_DUP_KEY when creating and index which has to be on a unique index.
If you run an insert statement that adds rows to a table and some of...
May 19, 2004 at 1:49 am
I take it you have some performance problems?
If your staging and production database are on the same box then I would use one of the methods you mention.
If the two...
May 18, 2004 at 1:52 am
We have just had our first contract tester and I have to say that it has been a very positive experience.
Our QA environment highlighted the need for a change in...
May 17, 2004 at 12:39 pm
If you can login to one server with the SA password then you can hack into any other SQL Server on the network.
Try sp_addlinkedserver!
Because SA always has id 1 you...
May 13, 2004 at 8:06 am
In the majority of cases it works. In the past year it has failed 15 times on scheduled runs.
It is more the fact that I cannot get any diagnostic information...
May 13, 2004 at 7:57 am
NORMALISATION
Normalise when it is practical to do so. If you have a sales by day of week arrangement then there would be little point in normalising it down to a...
May 13, 2004 at 7:52 am
If the DTS hangs when running within Enterprise Manager then because the display is modal I cannot get to the current activity.
Taskmanager shows 100% CPU utilisation with the sqlserv process...
May 13, 2004 at 7:22 am
Basically I created the DTS package using the export data wizard then changed all the "CREATE TABLE" SQL tasks to "DELETE FROM" tasks.
There are twelve database tables. The wizard creates...
May 13, 2004 at 6:55 am
Try updating dtproperties.
If you have the "allow changes to system tables" disabled then, if it is truly a system table, it should give an error message.
It doesn't so it isn't.
May 12, 2004 at 8:12 am
BOL says that xtype='U' or type='U' means user table.
The fact that dtProperties is conceptually a system table even though it marked as a user table is neither here nor there.
It...
May 12, 2004 at 7:26 am
I think the dtproperties table thing is a bug in SQL Server because it is flagged internally as a user table.
To get around it you have to add and OBJECTPROPERTY(id,'IsMSShipped')=0...
May 12, 2004 at 4:19 am
Viewing 15 posts - 3,211 through 3,225 (of 3,615 total)