Viewing 15 posts - 9,391 through 9,405 (of 13,461 total)
this is normal; the execution plan is cached;
when you create a proc/function/view, and it features SELECT * FROM, behind the scenes the actual query is stored as SELECT Col1,Col2,Col3.... for...
May 21, 2010 at 10:57 am
Nagesh S-432384 (5/21/2010)
May 21, 2010 at 10:53 am
yep, what you posted matches what i have in my snippets, captured from some other post on the same subject:
The main clauses in SQL are logically executed in the following...
May 21, 2010 at 10:46 am
just the "thank you" you already gave us is enough; we all apreciate receiving that!
May 21, 2010 at 10:43 am
it's fairly simply, just pass in the format string you want to use; if you are familiar with the CONVERT(date,StyleNumber), many of the typical formats are built in:
declare @TheDate datetime
SET...
May 21, 2010 at 10:26 am
when you take a backup, it gets the data, and then the log of all changes as well; so say you had a backup that was huge, and took...
May 21, 2010 at 9:14 am
your right, I think it's permissions;
the account that SQL is running under, are you SURE it has access to the C:\Users\jwilliams\Documents\ folder and all it's sub folders?
since you've used CmdShell...
May 21, 2010 at 7:37 am
here's a screenshot to uninstall;

also, i believe if you go to the Surface Area Configuration, you can add yourself(windows login) as an administrator to your instance,a dn then change the...
May 21, 2010 at 6:41 am
if you can login with your windows login, it doesn't matter what the current password is for sa, just change it to a new, known password: you can rightclick>>Properties of...
May 21, 2010 at 6:26 am
select * from sys.all_objects where type_desc = 'SYSTEM_TABLE' --all sys tables
select * from sys.all_objects where type_desc = 'USER_TABLE' and is_ms_shipped = 0 --all user tables
aside from...
May 21, 2010 at 6:22 am
duplicate post, do not reply to this thread.
continue the discussion here
May 21, 2010 at 6:17 am
anjani_aim (5/21/2010)
May 21, 2010 at 6:07 am
late binding of objects are a feature of stored procedures; you can reference a non existent table/view/procedure/function without raising an error. the references will be checked when the procedure is...
May 21, 2010 at 5:38 am
MC here's some basic steps; the first thing you need is access to an actual mail server , and the email/username/password used to login to the mail server; i believe...
May 21, 2010 at 4:55 am
Viewing 15 posts - 9,391 through 9,405 (of 13,461 total)