Viewing 15 posts - 166 through 180 (of 207 total)
here is an example of a simple cross tab query. Hope it helps.
SELECT emp.LastName + ', ' + emp.FirstName AS 'Employee Name',
SUM(CASE month(orderdate) WHEN 1 THEN 1 ELSE...
March 16, 2007 at 11:15 am
Also, don't forget about the VPN option between your sql server and the web hosting site. That keeps it more secure.
March 16, 2007 at 11:06 am
I see your problem. Opening your SQL Server to the outside world can be very dangerous. You must make sure you lock it down as best you can at the...
March 16, 2007 at 11:04 am
Correct me if I'm wrong, but isn't the tempDB only resized at start up? Your queries are probably doing a bunch of sorts which is filling up your tempdb.
If...
March 16, 2007 at 11:00 am
I take it your database is already set up, which means there is no opportunity to set up a new drive array. Now the database is running out of space,...
March 16, 2007 at 10:51 am
Looking at your request, the replace method is definately the best option.
March 16, 2007 at 10:40 am
Don't forget to make sure the agent has rights to the share folders that you set up.
March 16, 2007 at 10:37 am
I'd recommend the linking method which enables the data to remain fresh. I have users here that "copies" the tables and then don't understand about it being a snapshot in...
January 30, 2007 at 12:04 pm
I'm not sure if I would use the SA account to start SQL Server. What you may want to do is find out why the sqladmin account was locked out,...
January 30, 2007 at 12:00 pm
William
In management studio, you can set default values in the column property section which appear on the bottom half of the work screen. It does not appear until you are enter...
August 10, 2006 at 3:29 pm
As far as I know the position has not been filled but I am no longer there
August 1, 2006 at 6:36 pm
You need to connect to the integrations services engine. Your package will be either under the file system or MSDB drop down from stored packages.
Let me know if you...
July 25, 2006 at 4:33 pm
Frank
I had to do it the old fashioned way utilizing import/export data method. Right click on database, select tasks, then select export. The rest is in the wizard. Good luck
Marvin
July 25, 2006 at 4:29 pm
You can simply type the delimiter character in the pull down box. Let me know if you need any futher help.
July 25, 2006 at 4:24 pm
Steve
I'd try an execute SQL task and assign that value to a user defined variable. Then I'd set the connection string expression to that variable. Hope this helps.
July 25, 2006 at 4:08 pm
Viewing 15 posts - 166 through 180 (of 207 total)