Viewing 15 posts - 11,566 through 11,580 (of 13,463 total)
it's possible to connect to SQL server without using TCP/IP (you can use named pipes); so those named pipes users would not have an IP address available to query;
Just like...
February 17, 2009 at 8:43 am
when i use that script wizard in 2005 SSMS, i get an option at the end to script per file:

but i'll be darned if i see the equivilent in Tools>>Options...
February 17, 2009 at 5:50 am
Also could it be that the log file is being appended to instead of overwritten WITH INIT, so the big backup actually contains 30 or so regular 5 Meg backups...
February 17, 2009 at 4:50 am
unless you add an alias to the the tables from the other db, you have to reference them with the whole 4 part identifier in the select:
[ON_KEY_42R5_UDM2]..astAssets.ID,
not just...
February 17, 2009 at 4:38 am
damn you are right....
i copied this from the end of a long thread, figuring it was complete...i tried isReallyInteger('bob'), which returned 1 for true...I'm looking at it, but it's either...
February 16, 2009 at 2:02 pm
a much longer thread on the ins and outs and liabilites of the IsNumeric function resulted in two enhanced user function s:IsReallyNumeric and IsReallyInteger. I saved them in my snippets.
try...
February 16, 2009 at 1:36 pm
except for the fact that a delete is logged and truncate is not, doing a DELETE and the DBCC RESEED has the same affect.
this script grabs the tables in FK...
February 16, 2009 at 1:28 pm
just missing the ELSE/END:
update tblDrawings
set TypeCode = case SheetNumber
...
February 16, 2009 at 8:47 am
it's your business process, so you'd know better than me...do you need to update the whole table every time?
i thought the trigger should only update from the INSERTED table, and...
February 16, 2009 at 6:54 am
there is a built in procedure to get all your objects in dependancy order:
EXEC sp_msdependencies @intrans = 1
I've only used it to build script, and not to drop...
February 15, 2009 at 1:03 pm
I think you are planning the right way. I try to analyze the issue like this:
say i was going to support Spanish language version of my data, and consider...
February 15, 2009 at 8:26 am
you really need to start with creating a trace with profiler....create one and let it run for a while...I'd say one business day.
with that, it will give you every query,...
February 15, 2009 at 8:17 am
somewhere in your classes, notes and lectures, you must have heard there is an INFORMATION about SCHEMA information in the database I wonder if you were to look at some...
February 15, 2009 at 8:08 am
With this being your final year project at school, it wouldn't be right for us to do the work...you'd never gain the knowledge by copying our code. Being aware of...
February 15, 2009 at 7:29 am
you were so close on the syntax;
to assign to a static value, you usually use SET; but
you can assign a variable inside a select, like SELECT @CITY=CITY,@STATE=STE FROM ADDRESSES....
here's...
February 13, 2009 at 6:34 pm
Viewing 15 posts - 11,566 through 11,580 (of 13,463 total)