Viewing 15 posts - 10,891 through 10,905 (of 26,489 total)
The question I have, is this, the last date of what year? Using today, 2012-07-02, as the date of reference, what year do you want the end of; this...
July 2, 2012 at 8:28 pm
Please remember, the primary key does NOT have to be the clustered index.
July 2, 2012 at 8:23 pm
What edition of SQL Server are you running?
July 2, 2012 at 5:03 pm
Rogman (7/2/2012)
Lynn Pettis (7/2/2012)
I have to ask, are you using Zangle? The table and column names are just too familiar.
That would be a safe assumption, though we're not the...
July 2, 2012 at 4:38 pm
Rogman (7/2/2012)
Query- Please ignore the syntax. I changed it to ANSI joins as a test and the query plan...
July 2, 2012 at 4:03 pm
Not sure about others, but when I viewed your attachment, it is all run together. I'm not about to run this code on my computers when I can't even...
July 2, 2012 at 3:51 pm
Yes. BETWEEN is actually converted to >= and <=.
July 2, 2012 at 3:28 pm
Basically, when you query data based on dates (particularly when using date/time data type that can have time portion) you want a closed end comparision on the beginning part of...
July 2, 2012 at 3:20 pm
Something like this should work. Remove the CTE porition and replace the CTE name (TestData) with your table name.
with TestData as (
select lp from
(values
('5.46.200.1.462222.2.1.2.3.4.5.1'),
('5.46.200.1.462222.2.1.2.3.4.5')
) sampledata(lp)
)
select
reverse(substring(reverse(lp),...
July 2, 2012 at 3:10 pm
I had to make some changes to your code. One, I don't have your database. Two, I don't have your file groups. Three, I don't have your...
July 2, 2012 at 2:23 pm
Gullimeel (7/2/2012)
July 2, 2012 at 12:23 pm
From BOL:
-bbatch_size
Specifies the number of rows per batch of imported data. Each batch is imported and logged as a separate transaction that imports the whole batch before being committed. By...
July 2, 2012 at 11:21 am
Bill Talada (7/2/2012)
I don't remember you posting code for your 8k splitter. We all knew there was a general splitter function being used. It doesn't matter...
July 2, 2012 at 10:47 am
Sourav-657741 (7/2/2012)
Lynn,Can you share the script to use?
As I said, at a previous employer. I don't have access to the script I used to setup Robocopy to copy the...
July 2, 2012 at 10:08 am
Looks like MIRROR TO requires the Enterprise Edition to work.
At a previous employer I setup robocopy to automatically copy backup files from the local backup directory to an offsite location...
July 2, 2012 at 10:00 am
Viewing 15 posts - 10,891 through 10,905 (of 26,489 total)