Viewing 15 posts - 271 through 285 (of 1,479 total)
I'm sorry but I don't see what it has to do with lookups. Notice that I had 2 queries. Both of them had the same criteria. ...
December 17, 2012 at 1:06 pm
GSquared (12/17/2012)
Try this:
SET NOCOUNT ON;
USE ProofOfConcept;
GO
CREATE TABLE dbo.SARGTest (
DT...
December 17, 2012 at 12:15 pm
Andre Ranieri (12/17/2012)
December 17, 2012 at 7:46 am
I'm assuming that you want the user to be able to run a specific job and not all jobs. If I'm correct, then you can do it using the...
December 16, 2012 at 9:31 am
You have an extra from after the key word where. If you'll delete it, then there is a good chance that it will work. I would also specify...
December 12, 2012 at 9:28 am
You can modify the SQL Statement so it will get 2 parameters each time, but won't always use both of them. Here is a small example that is based...
December 12, 2012 at 9:07 am
Rebuilding the clustered index rebuilds the whole table. If the table is a heap you can rebuild the table with alter table statement (but most chances are that creating...
December 12, 2012 at 8:54 am
Chris-475469 (11/28/2012)
Thanks Adi.Are you able to provide the link?
I apologize, I don't know how I didn't notice that I didn't paste the URL into the message. Glad that...
November 29, 2012 at 3:33 am
After a short time (don't remember if he said how long), they ran out of business.
Adi
November 28, 2012 at 3:05 am
To add a bit about the second question. At Pass summit 2011 Paul Randle had a presentation that he told about a bank that had one old full backup...
November 28, 2012 at 2:58 am
Using sp_configure to modify the default language will work on new logins that will be created without specifying the logins' default language. It will not modify an existing login....
November 28, 2012 at 2:46 am
Check the fallowing URL. I know that it is for SQLNCLI and not SQLNCLI10, but I've seen few references to this page by people that had this problem when...
November 28, 2012 at 2:31 am
You need to remove the alter table statement from the procedure. With it, the procedure can work only the first time that it runs. After the column was...
November 27, 2012 at 6:59 am
Allocation in files belonging to tempdb is done using proportional fill. It means that when the files have the same size the allocation will be distributed across all files....
November 11, 2012 at 8:00 am
There is no need to copy screen shot into the message. Instead, it is better to have a small SQL Scripts that simulates your problem. The script...
November 11, 2012 at 7:33 am
Viewing 15 posts - 271 through 285 (of 1,479 total)