Viewing 15 posts - 361 through 375 (of 9,643 total)
Based on the example in this BOL Article, I'd say varbinary(128).
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
July 15, 2015 at 12:43 pm
Do you need to do it at insert or is it an update AFTER the rows are inserted?
It is possible to do it in both cases. Seems like an...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
July 15, 2015 at 12:39 pm
Comparison to NULL always yields UNKNOWN not True or False so you probably do want the OR b.deptid IS NULL logic to make sure your query is correct.
You say that...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
July 15, 2015 at 12:15 pm
I'd like to know why DBCC CLEANTABLE worked and what it actually cleaned up because it seems like there was some metadata kicking around for that table somewhere that caused...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
July 14, 2015 at 11:56 am
Backing up a SQL Server database is an online operation so you don't have to suspend operations on the database in order to get a backup of a consistent state....
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
July 14, 2015 at 11:27 am
You can start by using some of the metrics built into SQL server using DMV's like sys.dm_exec_query_stats and sys.dm_exec_procedure_stats to look at most executed queries and longest running queries. ...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
July 14, 2015 at 11:22 am
GilaMonster (7/13/2015)
Yes, yes, yes, yes!!!!!!!!Congratulations. You have complied with the requirements prescribed for your degree, and are cordially invited to the graduation ceremony
Congrats.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
July 13, 2015 at 8:58 am
Brandie Tarvin (7/11/2015)
Usually the call for speakers is...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
July 13, 2015 at 8:57 am
You need something like the following (this won't work as written, but it should give you an idea):
=(IIF(fields!date1.value>IIF(fields!date2.value = "", Today(), fields!date.value),"late","on time"))
For example, you may need to use the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
June 30, 2015 at 10:01 am
Sounds like either "bad" parameter sniffing. You can check the parameter values for the slow runs to normal runs by using ExecutionLog3.Paramters column and see what values are causing...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
June 29, 2015 at 2:06 pm
Here's a quick test I threw together to see what happens:
IF OBJECT_ID('dbo.KeyTest', 'U') IS NOT NULL
BEGIN;
DROP TABLE dbo.KeyTest;
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
June 29, 2015 at 1:56 pm
Wish I could be more help, but I don't know anything about Universe DB. I just looked at the documentation, http://www.adbk.se/manuals/uv10/uvdoc/UniVerse/Sqlref.pdf, to try to provide some help. Since...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
June 29, 2015 at 1:08 pm
Lowell (6/29/2015)
the funny thing is, that NC index gets used a...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
June 29, 2015 at 12:35 pm
Congratulations Alan. Nothing like the first child.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
June 29, 2015 at 12:30 pm
My instinct is to change the clustered index to be unique and drop the non-clustered because I can't think of an instance where the optimizer would choose the non-clustered unique...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
June 29, 2015 at 11:45 am
Viewing 15 posts - 361 through 375 (of 9,643 total)