Viewing 15 posts - 5,281 through 5,295 (of 6,678 total)
If you decide to go with a table - then using a 3 character mnemonic as the key value would be my approach. That way, you have the mnemonic...
April 23, 2009 at 2:23 pm
According to this document http://www.microsoft.com/sqlserver/2005/en/us/compare-features.aspx - I don't see where you cannot do any of the things you are trying to do.
I have used all of those items in the...
April 23, 2009 at 2:04 pm
Is it possible that the reports are exceeding the limitations of Excel? How many rows are being returned for these salesmen?
April 23, 2009 at 1:52 pm
Can you explain what you mean by 'database refresh'? I have no idea what that means.
BTW - why did you post this same message in two separate forums?
April 23, 2009 at 1:46 pm
Jack Corbett (4/23/2009)
April 23, 2009 at 1:32 pm
Resources to learn powershell - well, let's see...there's that thing called google...that thing called my time...and I just sort of put them together.
Yep, nothing but my time (well, actually the...
April 23, 2009 at 1:12 pm
Instead of doing this through a SQL query run through SSMS - I would use a combination of powershell and sqlcmd.
Example:
PS> $servers = get-content c:\temp\servers.txt
PS> $servers | % {sqlcmd -S...
April 23, 2009 at 12:56 pm
Try disabling anonymous logins in IIS for those sites and enabling windows integrated authentication.
April 23, 2009 at 12:20 pm
Did you try Gail's suggestion to see what is actually in each column?
April 23, 2009 at 12:09 pm
Actually, Bob's process will not work with a temp table because a temp table created in a procedure would no longer exist when the procedure terminates. You would have...
April 23, 2009 at 9:36 am
Your problem here is going to be the dynamic columns. If the columns were fixed, then you could use the following:
CREATE TABLE #temp2 (define all the columns here);
INSERT INTO...
April 22, 2009 at 5:31 pm
Again, you should know about the OUTPUT feature of the INSERT and UPDATE statements. Using this will allow you to create a procedure that could update multiple records in...
April 22, 2009 at 5:25 pm
In SQL Server the datetime datatype (that is what you are using, right?) is stored as a double. This number is the number of days since 1900-01-01 where this...
April 22, 2009 at 5:22 pm
I am curious - what features in SSIS Enterprise do you see as vital to your systems and processes? I am running several processes using Standard Edition with no...
April 22, 2009 at 5:07 pm
Okay, there are a couple of things you should know. First, when checking dates and date ranges we need to strip the time portion from the input parameters to...
April 22, 2009 at 4:29 pm
Viewing 15 posts - 5,281 through 5,295 (of 6,678 total)