Viewing 15 posts - 2,341 through 2,355 (of 7,164 total)
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 16, 2013 at 1:07 am
Column stats is the likely reason given the info.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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,
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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()=...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 15, 2013 at 11:05 pm
kenambrose (1/15/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 15, 2013 at 2:19 pm
Ill Communication
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 15, 2013 at 10:50 am
kingdonshel (1/15/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 15, 2013 at 7:43 am
Leveraging the validation built into the System.Net.Mail.MailAddress constructor is clever and I did not have to set trustworthy on to use it. The RegEx version is nice too. I wonder...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
January 15, 2013 at 7:34 am
Viewing 15 posts - 2,341 through 2,355 (of 7,164 total)