Viewing 15 posts - 2,341 through 2,355 (of 7,168 total)
sqlnaive (1/16/2013)
January 16, 2013 at 1:47 am
An SSIS package is just a set of instructions. If you kick off dtexec.exe three times in three different cmd shell windows and all call the same package then you'll...
January 16, 2013 at 1:14 am
I agree, it's a pain. It's something they fixed in PowerShell 3.0.
I just drop right into my loop if I get a result and it handles it, but I do...
January 16, 2013 at 1:07 am
Column stats is the likely reason given the info.
January 16, 2013 at 12:48 am
foxxo (1/16/2013)
From BOL:
http://msdn.microsoft.com/en-us/library/ms187348.aspx
Updating statistics ensures that queries compile with up-to-date statistics. However, updating statistics...
January 16, 2013 at 12:42 am
Kickoff a proc in Sybase and then copy some data from a table to SQL Server when the proc is done? Sounds like an easy job for SSIS. The hardest...
January 16, 2013 at 12:40 am
USE AdventureWorks2012;
DECLARE @schema_name SYSNAME,
@table_name SYSNAME;
SELECT @schema_name = N'HumanResources',
@table_name = N'Department';
SELECT st.name AS StatsName,
...
January 16, 2013 at 12:23 am
I just came back to this and found that you cannot use a temp table in a classifier function, meaning I cannot see a way to use sys.xp_logininfo directly to...
January 16, 2013 at 12:19 am
The ACE drivers are not standard equipment on Windows Server 2008 so in case you;re looking for them you can download a 32 or 64-bit version here:
http://www.microsoft.com/en-us/download/details.aspx?id=13255
January 15, 2013 at 11:48 pm
I am not a huge fan of Linked Servers mainly because of quirks like this. You may not want to hear this because your process worked for years prior to...
January 15, 2013 at 11:22 pm
rynmthw3 (1/14/2013)
I do not think so. SUSER_NAME() does not have a restriction related to Database Users. The function is poorly named. It returns Server Login information.
What if rather than SUSER_Name()=...
January 15, 2013 at 11:05 pm
kenambrose (1/15/2013)
January 15, 2013 at 10:39 pm
I was really surprised at how poorly the RegEx did compared to MailAddress. I am now wondering what MailAddress uses to determine validity.
Here are a couple TVFs to go along...
January 15, 2013 at 9:05 pm
The logic looks OK to me. Is this homework or a real-world scenario? If real-world then consider adding a transaction boundary around proc1 and proc2 so that if proc2 encounters...
January 15, 2013 at 2:19 pm
Viewing 15 posts - 2,341 through 2,355 (of 7,168 total)