Viewing 15 posts - 6,391 through 6,405 (of 13,460 total)
hybrid of the wide table idea?
do those 1024 columns logically break into groups that could be, say 4 or 5 other tables? (measurement types?)then you have , dunno, 5 tables...
Lowell
November 16, 2011 at 1:04 pm
stop connections permanently, like using the firewall to ignore all traffic from the webserver?
i'd go firewall first, a login trigger would work for an entirely SQL solution, but the hostname...
Lowell
November 16, 2011 at 11:53 am
yeah i'd consider either dynamic sql as suggested, or breaking this up into 4 procedures.
a master proc that ends up returning one of 4 proc results based on the parameters;
my...
Lowell
November 16, 2011 at 11:40 am
you can grant insert permissions to public for it.dbo.AlterLogin, i *think* that will resolve the audit issue;
i've done the same, but i've been sticking my audit table in master.
USE...
Lowell
November 16, 2011 at 9:57 am
i'm trying to think this through, does this sound right to everyone?
SQL retrieves the data in what the query engine deems is the fastest way possible, and caches that execution...
Lowell
November 16, 2011 at 9:01 am
Steve Malley (11/16/2011)
Lowell
November 16, 2011 at 8:43 am
The sql plan you posted is returning a query with 247,958 rows? is that right?
an SSRS report should not be presenting a quarter million rows of data for anyone...
Lowell
November 16, 2011 at 7:42 am
Bryan i think you can simply add a step to your job that would do the notification, and then change the On Failure to call that notification step instead, right?

Lowell
November 16, 2011 at 7:21 am
Charmer (11/16/2011)
Hi Friends,how do i select last 5 rows without any sorting order?
you cannot.
without an order by, there is no first and last.
SELECT TOP 5 * FROM SOMETABLE will give...
Lowell
November 16, 2011 at 6:21 am
i see there is a connect item for two other ODBC drivers with the same issue here....
one poster say if he checks this in the settings he gets the error...which...
Lowell
November 16, 2011 at 5:32 am
it's a nice tool, migrates schema and data, but leaves you with the list of items that will need to be converted manually...packages, procedures and functions.
glad to hear you are...
Lowell
November 16, 2011 at 4:10 am
IF is typically used for logic flow, where CASE is used to return data values;
your example is bending an IF into a situation similar to a CASE, but an...
Lowell
November 15, 2011 at 1:02 pm
Sean Lange (11/15/2011)
...but that is different than 60 seconds. 60 seconds is too much but 30 seconds + 30 seconds is just right.
,
yes, but that 10 second pause in the...
Lowell
November 15, 2011 at 12:23 pm
well, i would consider creating a view that pulls all 18 tables together...
then the proc can select directly from the view and contine from there.
depedning on what you are doing...
Lowell
November 15, 2011 at 11:11 am
how many values are in dbo.tbl_CDE_MultiMonth, which is where you were gettting the tablenames from?
Lowell
November 15, 2011 at 11:01 am
Viewing 15 posts - 6,391 through 6,405 (of 13,460 total)