Viewing 15 posts - 8,551 through 8,565 (of 13,460 total)

clicking "Debug" instead of "Execute" more times than I can count.
October 18, 2010 at 8:38 am
since you mentioned textcopy, here's pair of procedures to help you use it a little easier. I had this saved in my snippets.
In TSQL, you will have to loop thru...
October 18, 2010 at 6:08 am
Kwisatz78 (10/18/2010)
October 18, 2010 at 5:58 am
lots of things to change there;
get rid of the old ansi join syntaxes...
get rid of the deprecated *= joins
adding the logic to split the string into a table
minor syntax...
October 16, 2010 at 4:55 am
GilaMonster (10/16/2010)
Why...
October 16, 2010 at 4:00 am
jaffrey (10/16/2010)
Hai guys,Is it possible, Delete a record without using Delete keyword?
a single record? no...the TRUNCATE TABLE [TABLENAME] command will delete all records in a table. so that deletes records...
October 16, 2010 at 3:48 am
no you cannot. backups are forward compatible, but not backwards compatible...meaning SQL 7 could restore a backup from version 6.5, but not any backups from 2000/05/08.
instead you'll want to...
October 16, 2010 at 3:38 am
i think your confusing parent-child relationships;
businesswise, the students and the table associated to them are the key/primary table.
information about the parents may or may not be available, so the table...
October 15, 2010 at 5:51 am
Bhuvnesh (10/15/2010)
What does it mean?
when you do a backup that does not include the WITH INIT clause, the new backup is appended to the same physical file. So after two...
October 15, 2010 at 5:45 am
I'm nearly the same winston; the only info that is in the master database that is special to me is logins, and I've created a script that pulls those out...
October 15, 2010 at 5:38 am
AFAIK there is no issues with leaving print statements in place; I've never seen or heard of an application suffering due to print statements.
even from an application you can read...
October 15, 2010 at 4:44 am
this is inside a procedure, right?
is @TodaysDate a parameter with a default of NULL?
if that's true, I'm thinking parameter sniffing is the problem, and a bad execution plan is being...
October 14, 2010 at 12:44 pm
your query is good, all you need to do is change the ORDER BY in order to get it in the desired visual representation.
order by category,price desc;
October 14, 2010 at 11:48 am
I've gotten a Gmail account to work just fine; they use an alternate port for SMTP, but the rest was a typical setup:

October 14, 2010 at 11:02 am
in simple mode, the log would only have uncommitted transactions in it, right?
could there be a developer or some process that is starting a transaction, but never issuing the COMMIT?...
October 14, 2010 at 9:54 am
Viewing 15 posts - 8,551 through 8,565 (of 13,460 total)