Viewing 15 posts - 481 through 495 (of 602 total)
Hopefully there is a better way, but I know of none. I would use something to preprocess the file, removing the first line. That something, in my world, would be...
November 1, 2005 at 7:39 am
It was quite the best job I've ever had, despite the complexity of what we had to accomplish. And we weren't really selling fruit.
We got purchased and asked to move...
October 27, 2005 at 11:27 am
I once worked with a web application that allowed managers to set accessibility to work units based on pick lists. For example,
User A can see orders that have Oranges and Apples, but...
October 27, 2005 at 10:31 am
And sometimes, you must resort to the "create a table for each user" solution, no matter what anybody says.
October 27, 2005 at 9:37 am
There is even a simpler answer:
No.
...where [column name] in (@foo) ....
does not work that way.
October 21, 2005 at 12:18 pm
And don't forget:
"A table that has an INSTEAD OF trigger cannot also have a REFERENCES clause that specifies a cascading action. "
--BOL
jg
October 20, 2005 at 10:37 am
From somewhere on the IntarWeb:
"A MySQL dump is a bit slower than a raw backup because it creates all the SQL queries required to create the tables of that database,...
October 20, 2005 at 10:28 am
Briefly...
There are two cases that come to mind. One of them would involve adding a bit to the tail of an index if the value was needed to cover a query,...
October 19, 2005 at 10:00 am
You can create an index on a bit column using the normal CREATE INDEX syntax. EM won't let you select a bit in an index.
Also you can use QueryAnalyzer's GUI. ...
October 19, 2005 at 8:59 am
BK...
Can you post the query and execution plan? Both from QA and production. You can capture the plans in the profiler.
October 18, 2005 at 2:23 pm
Just a thought....
Could it be that the application is only reading the first row of the resultset and then disconnecting or closing? Not that it would be a good idea...
October 18, 2005 at 8:05 am
2x (Quad 3.06GHz P4 Xeon MP 16GB Ram, MSA1000 2Gb, 42x72GB 15K U160 SCSI), clustered.
/HAND
October 14, 2005 at 2:58 pm
Here's an example of the use of the inserted table in a trigger:
Create Trigger CustomerTruckInsert on CustomerTruck FOR Insert, Update
not for replication
as
Update CustomerTruck set DateLastChanged=getutcdate()
From [Inserted] , CustomerTruck
...
October 14, 2005 at 2:43 pm
Replace statements are not feasible (there would have to be literally thousands of them to check and replace all the things that couldbe wrong.
Perhaps you have answered your own question. ...
October 14, 2005 at 2:03 pm
Viewing 15 posts - 481 through 495 (of 602 total)