Viewing 15 posts - 676 through 690 (of 1,554 total)
As we all know, there are many ways to skin the same cat, as shown here as well.
If we should go the 'short route', the minimum needed is just to...
January 2, 2006 at 2:11 am
AFAIK, timestamp has never been intended to be an 'incementor', but rather a 'uniqifier'.. In my version of BOL (2k updated) the wording is slightly different:
'The value in the...
December 30, 2005 at 7:12 am
You can't use timestamp for that purpose.
The timestamp value is a random unique binary value, you cannot assume that there is any particular sequence to all generated timestamps from a...
December 30, 2005 at 6:23 am
If I understood the shipment-carton tables right, this shouldn't be more than straight join with a not exists clause to get this list...?
create table #shipment ( sId int...
December 30, 2005 at 6:16 am
bcp isn't by far T-SQL either, it's a commandline exe just like isql and osql. You do need to use xp_cmdshell for all of these if you want to exec...
December 30, 2005 at 3:20 am
I think we need a more generic explanation in simple words to what the real problem is - that is, what is the purpose - instead of the specifics of 'how...
December 30, 2005 at 2:25 am
Eh..?
You mean like 'how do I turn a tick in my box in the windowsform' type thing..?
Sorry, but I'm lost to what your...
December 29, 2005 at 9:04 am
The complete errormessage will always be sent to the client, it's not even possible in some cases to trap the errormessage in your T-SQL code.
How it is handled and displayed...
December 29, 2005 at 8:59 am
You need to use an update statement in order to update
For the above result,
UPDATE emp
SET fileSent = 1
WHERE Inactive = 0
AND ...
December 29, 2005 at 8:55 am
Hmm... but you do have all the required data for each recipient avaliable in table(s), right?
I can't really see why a 3rd party tool would be necessary. It shouldn't take...
December 29, 2005 at 2:10 am
Here's a few places with some very insightful information. (and don't forget BOL, your no#1 source of info)
How to Interact with SQL Server's
December 28, 2005 at 9:17 am
I thought about the typo thesis for the ranges as well, but that broke with the wanted results of example 2..
/Kenneth
December 27, 2005 at 9:00 am
The question still remains to be asked.. What problem are you trying to solve? I don't think you'll get much help if we have to guess what you want.
The examples...
December 27, 2005 at 7:20 am
Matty,
you need to tell us what errors you get. 'Not working' isn't very much to go on.
However, I didn't have any problems doing the below (minor changes to logical names...
December 27, 2005 at 3:01 am
This doesn't seem right. Are you sure this is the complete commands, and the right resultset from the restore?
Since the restore is specifying another dbname than the one backed up,...
December 23, 2005 at 2:12 am
Viewing 15 posts - 676 through 690 (of 1,554 total)