Viewing 15 posts - 871 through 885 (of 2,038 total)
RBarryYoung (5/19/2009)
May 20, 2009 at 2:13 am
Goldie Graber (5/19/2009)
Sure, the elapsed time is the first thing the user notices....
May 20, 2009 at 2:02 am
Hi Pieter
Some questions:
1.) Do you call these functions in your WHERE clause?
2.) If yes, are the initial replacements "()-. " needed? They may be a very huge problem for another...
May 19, 2009 at 3:51 pm
For usual tests I prefer the SQL Profiler for more special tests I use some procedures I wrote. I can post them if you want.
Sure, the elapsed time is the...
May 19, 2009 at 2:35 pm
Hi
Try this:
dtexec /F "C:\DTSPackage\MySolution.dtsx" /SET "\Package.Variables[employeeID].Value";9 /SET "\Package.Variables[OtherVar].Value";9
Greets
Flo
May 19, 2009 at 2:00 pm
Goldie Graber (5/19/2009)
Florian Reischl (5/19/2009)
Hi GoldieDo you have a Dual/Quad Core environment?
Greets
Flo
Yup, sure do.
Do you mean to say that the CPU time is total of ALL processors?
If so, I guess...
May 19, 2009 at 1:54 pm
Oups, sorry. Too many SSE2k in my environment yet...
I corrected the previous script and added schema-support and security for names 😉
Greets
Flo
May 19, 2009 at 1:48 pm
Well... This is definitely a new chapter of "Coding for Fun" 😀
Compare and take your choice..
[font="Courier New"]SET NOCOUNT ON
DECLARE @now DATETIME
DECLARE @i INT
DECLARE @count INT
DECLARE @name NVARCHAR(128)
DECLARE @schema NVARCHAR(128)
DECLARE @sql...
May 19, 2009 at 1:34 pm
GSquared (5/19/2009)
Greg Snidow (5/19/2009)
GSquared (5/19/2009)
Get rid of the semicolons, the function will still run, it's just less "clean".
I often see code with semicolons here, but usually without. I have...
May 19, 2009 at 1:07 pm
Hi Stephen
I think the people who can answer this question are you...
First question:
Do you think the customer may be lost if you don't introduce this security software?
Second question:
Is your customer...
May 19, 2009 at 12:58 pm
What's the problem with the cursor? In my book cursors are okay for these maintenance tasks.
Anyway, you can use a string concatenation or FOR XML PATH() in combination with sys.tables.
Greets
Flo
May 19, 2009 at 12:38 pm
Hi Goldie
Do you have a Dual/Quad Core environment?
Greets
Flo
May 19, 2009 at 12:34 pm
Hi Goldie
Try sys.dm_exec_requests view:
SET NOCOUNT ON
SELECT cpu_time, total_elapsed_time, reads, writes, logical_reads
FROM sys.dm_exec_requests
WHERE session_id = @@SPID
DECLARE @i INT
SELECT @i = object_id FROM sys.all_columns
SELECT...
May 19, 2009 at 11:36 am
Hi Lowell
Some questions...
Lowell (5/19/2009)
OK, lets assume I have a zip file that someone might actually paypal me a dollar to buy access it.
Is the ZIP file different for each consumer...
May 19, 2009 at 11:02 am
Viewing 15 posts - 871 through 885 (of 2,038 total)