Viewing 15 posts - 14,191 through 14,205 (of 26,486 total)
Going back a couple of employers, I have to agree. We purchased multiple licenses of SQL Server 2005 and later SQL Server 2008 that we installed on multiple servers....
November 2, 2011 at 10:31 am
Basically been in IT my entire career. There was a stint after I got out of the Air Force (was a computer operator) where I worked a a 7-11...
November 2, 2011 at 10:27 am
You've shown us the function itself but not how you are using it. Give us the whole picture, not just little pieces of it.
November 1, 2011 at 11:33 am
Jeff Moden (10/31/2011)
isuckatsql (10/31/2011)
October 31, 2011 at 3:28 pm
I have to agree with Craig. Also, SSIS isn't always the best tool for the job, as you may have discovered when transforming data between tables in the same...
October 31, 2011 at 1:29 pm
Question, are level 1 values unique to level 1, and are level 2 values unique to level 2, etc?
October 31, 2011 at 11:07 am
sdownen05 (10/31/2011)
Thank you very much for the code, and also for correcting what I had sent. This works fine except for one thing; I get this message when I run...
October 31, 2011 at 10:58 am
JamesMorrison (10/31/2011)
EdVassie (10/31/2011)
October 31, 2011 at 10:55 am
Sorry to say but you haven't provided us with enough information to really help you.
We the DDL for the tables, sample data for the tables (enough to represent the problem...
October 29, 2011 at 2:01 am
You need PATINDEX, try this:
IF OBJECT_ID('TempDB..#JobName','U') IS NOT NULL
DROP TABLE #JobName;
GO
--===== Create the test table
CREATE TABLE #JobName(
JobName NVARCHAR(100)
);
--===== Insert the test data into the test table
INSERT...
October 29, 2011 at 1:29 am
Check the SSIS package(s). IIRC they can actually be setup to not fire triggers on insert.
October 28, 2011 at 9:12 am
David Moutray (10/28/2011)
Index rebuilds in full recovery are fully logged. Because of this, the index may be taking a long time because of transaction log issues. It might be running...
October 28, 2011 at 8:36 am
Previous previous employer, network services handled the servers and installation of the OS and OS patches. I installed SQL Server and applied the service packs when released.
Worked well.
October 27, 2011 at 11:38 am
Could you post the DDL for your table(s), sample data for the table(s), and your expected results based on the sample data?
For help in doing this, please read the first...
October 27, 2011 at 10:37 am
Sapen (10/26/2011)
October 26, 2011 at 10:19 pm
Viewing 15 posts - 14,191 through 14,205 (of 26,486 total)