Viewing 15 posts - 1,726 through 1,740 (of 1,988 total)
ScottPletcher (4/23/2015)
Lynn Pettis (4/23/2015)
ScottPletcher (4/23/2015)
Lynn Pettis (4/23/2015)
CELKO (4/22/2015)
Why are you changing obvious integer data types to character data types?
Please read any book on basic data modelling and look at...
April 23, 2015 at 9:38 am
Something like,
CREATE TABLE #ids(id int, codes varchar(30))
CREATE TABLE #codes(code varchar(30), descript varchar(30))
INSERT INTO #ids VALUES(1, 'Code1,Code2,Code3')
INSERT INTO #ids VALUES(2, 'Code1,Code2')
INSERT INTO #ids VALUES(3, 'Code3')
INSERT INTO #codes VALUES('Code1', 'Description1'), ('Code2',...
April 22, 2015 at 1:41 pm
What do you mean by manual column, is that a column in excel or a column from the query you are running?
April 20, 2015 at 9:23 am
You can set excel to automatically refresh every X minutes.
April 20, 2015 at 9:17 am
I aslo tried to copy it from the hard drive but it hangs at 90% percent as well.
When you say that do you mean when you try to copy...
April 17, 2015 at 8:22 am
Why don't you disconnect their session when you change a users access to sensitive data, that should remove any temp tables they've created.
April 15, 2015 at 2:43 pm
Well is your goal just to get rid of the data in the table or do you have a reason you need to capture errors when deleting row by row?
April 15, 2015 at 12:17 pm
mw112009 (4/9/2015)
Thank you and please close this ticket.
This is a forum, not a help desk ticketing system, just throwing that out there.
April 9, 2015 at 1:39 pm
Something like?
DECLARE @table_name varchar(50),
@create_sql varchar(1000),
@insert_sql varchar(1000)
SET @table_name = 'TEST_DATE_' + CONVERT(varchar, getdate(), 112)
SET @create_sql = 'CREATE TABLE ' + @table_name + '(col_one datetime)'
SET @insert_sql = 'INSERT INTO ' +...
April 9, 2015 at 11:44 am
Be sure your server doesn't support adding memory by restarting itself if you go down that route 🙂
April 8, 2015 at 7:19 am
As far as I know it's based on the number of physical cores running some form of SQL Server component regardless of how many or which mix of components or...
April 7, 2015 at 4:10 pm
mw112009 (4/6/2015)
However when I paste the results in EXCEL the entire string got converted to some numbers ...
Hmm that is outside of this forum but a reply would...
April 6, 2015 at 3:24 pm
Quick question Grant, how many times have you seen systems/processes fail on the 13th of the month? I can count a good handful.
My favorite was coming across a system that...
April 3, 2015 at 12:16 pm
Are you sure the problem is the compiled execution plan and not just a problem with the code down the slower branch?
April 3, 2015 at 11:31 am
Let's be honest requiring statement terminators is to make life easier on the developers writing the syntax parser not because there is any inherent value in a ;
March 30, 2015 at 9:49 am
Viewing 15 posts - 1,726 through 1,740 (of 1,988 total)