Viewing 15 posts - 1,486 through 1,500 (of 7,429 total)
There of course ae plenty more ways to accomplish this as well it is really a matter of size of data going forward, potential for duplicate order numbers, and indexes.
The...
November 19, 2004 at 4:17 pm
If the data itself does not have a text qualifier then it will not affect you. If it does then you will end up reading in the text qualifier as...
November 19, 2004 at 4:03 pm
Also posted in your other topic which included this question later.
No you technically cannot. However you could build a middle tier service to update to multiple locations at one...
November 19, 2004 at 4:01 pm
No you technically cannot. However you could build a middle tier service to update to multiple locations at one time with transactions so you can recover from a failure. Or...
November 19, 2004 at 4:00 pm
The IS NULL in your example is more efficient and considered standard for this type of check. The reason is when you run
@var IS NULL
it evaluates true or false...
November 19, 2004 at 9:39 am
You most definently do so using filessystemobjects and file object to open, read and save.
Simple example
Dim x, z, objText, objText1, objText2, objText3, objText4
set x = CreateObject("Scripting.FileSystemObject")
set objText =...
November 19, 2004 at 6:39 am
That truely does of factors of depends. But I would say that many times you will need to add a controller somewhere to ensure transactions can get priority as needed...
November 19, 2004 at 6:09 am
Big applause. Great article. Nice and tight delievery.
November 19, 2004 at 6:06 am
With reqrads to the queries themselves the answer is no.
However you could potentially write Query 1 with a while loop in it and each step thru the while check...
November 18, 2004 at 6:32 am
I suggest shut down SQQL Server service and make sure that tempdb is deleted. I previously had a situation where tempdb was locked at the file level and wouldn't delete...
November 18, 2004 at 6:13 am
Pretty cool. However I would sugest you put you objects in MSDB at least for the table as you shouldn't create user tables in master as a standard. And as...
November 18, 2004 at 6:09 am
Another thing you might want to do so you could push off to the users a copy if requested into MSDE is setup the entire database in model on a...
November 7, 2004 at 3:18 pm
Host: Patrick (Microsoft)
Q: What method do you recommend for determining the optimal block size for both the log and data files?
A: Block size = NTFS cluster size? Depends somewhat on...
November 5, 2004 at 7:40 am
I assume you mean have it sort
{1,1a,1b,1c,2,2a,2b,3,4,5,5a,5b,6,8,11,12,12b,12c...}
Instead of the norm
{1,11,12,12b,12c,1a,1b,1c,2,2a,2b,3,4,5,5a,5b,6,8...}
The only way to get in numeric order would be to strip the alphas and cast as numeric in the order...
November 5, 2004 at 6:13 am
Where did you find this in BOL spindlej as this is what I find under topic "Cast and Convert"
When converting character or binary expressions (char, nchar, nvarchar, varchar, binary, or...
November 5, 2004 at 5:49 am
Viewing 15 posts - 1,486 through 1,500 (of 7,429 total)