Viewing 15 posts - 4,726 through 4,740 (of 7,187 total)
Yes, but the point is that with UPDATE...FROM, you'll never know about it. If you use the ANSI syntax, you'll get an error message.
John
February 8, 2012 at 7:46 am
Here's where Joe explained it to me before. I now try to avoid UPDATE...FROM unless there is no possibility of cardinality errors - and then I document it in...
February 8, 2012 at 7:31 am
If you can't find it in SSMS, it's probably because you don't have enough permissions on SQL Server. If you log on to the server and run SQL Server...
February 8, 2012 at 2:13 am
You need MSSQL$APP1.
John
February 8, 2012 at 1:45 am
alex.newsum (2/7/2012)
But I do not understand why a date is automatically pulled in this long format with the dates outside the text query.
It might have something to do with...
February 7, 2012 at 7:29 am
Debbie
Instead of using an Execute SQL task to get the result set into an Object variable, why not use a Data Flow task to get it into a staging table?...
February 7, 2012 at 4:04 am
An index enforcing a primary key constraint will indeed be created clustered by default, but if there is already a clustered index on the table, the new index will be...
February 7, 2012 at 3:58 am
Almost.... since a function was required, and you can't use temp tables in a function:
CREATE TABLE testitem (itm_item varchar(43) NOT NULL,itm_desc varchar(100) NOT NULL,wsd_quantity int NOT NULL)
INSERT INTO testitem
SELECT 'CHCWPSU10DMX','Chroma-Q...
February 6, 2012 at 6:09 am
It sounds as if the file was in the wrong place and the registry entry was correct, since you said that everything was 64-bit.
John
February 6, 2012 at 5:00 am
OS error 5 means access denied, while OS error 2 means the file could not be found. Looks like permissions have been changed in one place and elsewhere, one...
February 6, 2012 at 3:57 am
Bhimraj
Then you won't be able to release any space from your log file. You have two options:
(1) Implement your new backup strategy as a matter of priority
(2) Switch to...
February 6, 2012 at 2:50 am
Bhimraj
So you're not doing any transaction log backups at all at the moment?
John
February 6, 2012 at 2:38 am
Have you read about computed columns? I think this would be a better solution than a trigger.
John
February 6, 2012 at 1:39 am
Please will you provide table DDL (in the form of a CREATE TABLE statement) and sample data (in the form of INSERT statements) to help us to help you.
Thanks
John
February 3, 2012 at 9:45 am
Jay
Are you specifying the server name correctly, complete with instance name if appropriate and port number if necessary? You could try either looking in the errorlog of the server...
February 3, 2012 at 9:43 am
Viewing 15 posts - 4,726 through 4,740 (of 7,187 total)