Viewing 15 posts - 1,516 through 1,530 (of 5,103 total)
Ok that's the statement. Where does it says that it will update the varibles following a certain order ?
We know that, so far, we have been able to force the...
October 3, 2007 at 2:11 pm
AFAIR tempdb collation must match Default "SERVER" collation .
October 3, 2007 at 1:22 pm
Read access on the subscriber ?
Can you explain abit more what you really want ?
October 3, 2007 at 1:08 pm
Can you run?
UPDATE STATISTICS tblname WITH FULLSCAN,ALL
October 3, 2007 at 12:59 pm
Bob Fazio (10/3/2007)
SET @variable = column = expression sets the variable to the same value as the column. This differs from SET @variable = column, column = expression, which...
October 3, 2007 at 12:52 pm
I have done that in the past and to be honest is not that bad .... 😀
October 3, 2007 at 12:50 pm
Ah How much I have requested such feature .....
Sorry, currently there is no way 🙁 ...Use naming conventions to help yourself out a bit.
October 3, 2007 at 12:47 pm
First places to look iare: SQL Error Log and then on Windows Event Log.
You should definitely consider upgrading to SP2 and hotfix update rollup 3.
October 3, 2007 at 12:35 pm
If the service account is running under a "domain user" account you must grant permissions to that account on the destination share.
October 3, 2007 at 8:31 am
FILE state <> DATABASE state. your query returns FILE states not DATABASE states:
From BOL:
In SQL Server 2005, the state of a database file is maintained independently from the state of...
October 2, 2007 at 4:48 pm
mastroine (10/2/2007)
FROM tblMyOpinions_SitesILike
WHERE positive_opinion = 1
AND site_ranking = 1
...
October 2, 2007 at 4:39 pm
Just a little warning... you are using an undocumented behaviour and a SP could belly up your project. :hehe:
Other than that the use of variables in update statements have been...
October 2, 2007 at 4:34 pm
Ninja's_RGR'us (10/2/2007)
How does this bulk load work? Is this only a parameter you set or do you have to manually split the data file and call imports in parallel?
instead...
October 2, 2007 at 4:25 pm
First you should separate the insert from the update.
Second you should check for @@rowcount at the begining of the trigger
Third you should join also in the update trigger with the...
October 2, 2007 at 4:20 pm
Another trick for the large import is to set the DB in BULK_LOGGED mode before the import and if possible run bcp/bulkinsert in parallel (if at all possible)
I am also...
October 2, 2007 at 4:07 pm
Viewing 15 posts - 1,516 through 1,530 (of 5,103 total)