Viewing 15 posts - 6,301 through 6,315 (of 15,381 total)
You can use SSMS to script data for you too.
Right click the database -> Tasks -> Generate Scripts.
Choose whatever object(s) you want. Then go to Set Scripting Options. Click the...
November 13, 2013 at 7:43 am
Your sample data does not match the explanation of desired output. This sounds like you want a type of running total but I can't quite figure out what you are...
November 13, 2013 at 7:33 am
Jonathan Marshall (11/12/2013)
Hello everyone,I'm searching to see how performance works on columns concat in the where clause.
What are the search / performance ramifications?
Any suggestions?
WHERE
[column1] + [column2]
That...
November 12, 2013 at 12:12 pm
Kurt W. Zimmerman (11/12/2013)
November 12, 2013 at 12:07 pm
This is a mighty big topic. I would start by looking here. http://www.sqlservercentral.com/stairway/72399/%5B/url%5D
November 12, 2013 at 11:57 am
You are going to have to provide more details here. I took your sample data and turned into something consumable but there are no errors.
create table ciscorawdata
(
TransID int identity,
dateTimeOrigination int
)
insert...
November 12, 2013 at 9:42 am
krypto69 (11/8/2013)
My understanding is that it is possible to use create an indexed view in SQL2000 standard edition? (was going to buy Enterprise)
The main slow performing query that I have...
November 8, 2013 at 2:29 pm
Not exactly sure what you are trying to do here.
I am not even sure what my expected results should be since I am not sure what the calculation should be.
Not...
November 8, 2013 at 2:27 pm
roy.tollison (11/8/2013)
UPDATE UPDTABLE
SET updtbl_lat = i.infotbl_lat,
updtbl_long = i.infotbl_long
FROM INFOTABLE i inner join DTLTABLE d on d.dtltbl_group...
November 8, 2013 at 12:03 pm
jermaine.grant (11/8/2013)
Thanks for getting back. I have a insert command which will follow within the same statement, so does this still apply?Jermaine
I don't think your set commands will work properly...
November 8, 2013 at 9:46 am
jermaine.grant (11/8/2013)
Im trying to set idenity insert on on a table, however i cannot do this using the db server and database name as parameters.
declare @DestDB varchar(100)
declare @DestServer nvarchar(30)
declare...
November 8, 2013 at 9:33 am
frank 36119 (11/8/2013)
November 8, 2013 at 9:26 am
d_uvarajan (11/8/2013)
I clicked on "Insert Image" icon and typed the local file path and it inserted the html text here. But image...
November 8, 2013 at 8:07 am
SQL006 (11/7/2013)
Sean Lange (11/7/2013)
Something like this should work.
declare @EmployeeID int = 285;
with EmployeeTree...
November 8, 2013 at 7:17 am
erikd (11/7/2013)
Louis Hillebrand (11/7/2013)
The WHERE filter on 3 * the same character to start (REPLICATE(LEFT(t.name,1),3) + '%')
and secondly on starting with a character...
November 7, 2013 at 2:24 pm
Viewing 15 posts - 6,301 through 6,315 (of 15,381 total)